home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / STRUPR.C < prev    next >
C/C++ Source or Header  |  1992-03-02  |  174b  |  14 lines

  1. #include <string.h>
  2.  
  3. char *strupr(char *s)
  4. {
  5.   char *p = s;
  6.   while (*s)
  7.   {
  8.     if ((*s >= 'a') && (*s <= 'z'))
  9.       *s += 'A'-'a';
  10.     s++;
  11.   }
  12.   return p;
  13. }
  14.